home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / TrickyClickyBall.swf / scripts / DefineButton2_136 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-09-27  |  243 b   |  14 lines

  1. on(release){
  2.    _root.eyes += 1;
  3.    if(_root.eyes > 4)
  4.    {
  5.       this.ball.eyos._visible = false;
  6.       _root.eyes = 0;
  7.    }
  8.    else
  9.    {
  10.       this.ball.eyos.gotoAndStop(_root.eyes);
  11.       this.ball.eyos._visible = true;
  12.    }
  13. }
  14.